#!/bin/sh

echo "usage: server <working-path>"

killall S
killall R

if test $# -eq 0                                                                        
then 
 ./S &
 ./R &
else
 ./S $1 &
 ./R $1 &
fi

